* the imageble area on any printer.
*
* I’ve taken the actual values used from the OSX page setup dialog.
- * I'm not sure exactly where they got these values for, but might
+ * I’m not sure exactly where they got these values for, but might
* correspond to this (from ghostscript docs):
*
* All DeskJets have 0.5 inches (1.27cm) of unprintable bottom margin,
*
* /* Create a radio button with a label */
* radio2 = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio1),
- * "I'm the second radio button.");
+ * "I’m the second radio button.");
*
* /* Pack them into a box, then show all the widgets */
* gtk_box_pack_start (GTK_BOX (box), radio1, TRUE, TRUE, 2);
* GtkWidget *dialog, *toggle1, *toggle2;
*
* dialog = gtk_dialog_new (<!-- -->);
- * toggle1 = gtk_toggle_button_new_with_label ("Hi, i'm a toggle button.");
+ * toggle1 = gtk_toggle_button_new_with_label ("Hi, i’m a toggle button.");
*
* // Makes this toggle button invisible
* gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle1), TRUE);
* gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area),
* toggle1, FALSE, FALSE, 2);
*
- * toggle2 = gtk_toggle_button_new_with_label ("Hi, i'm another toggle button.");
+ * toggle2 = gtk_toggle_button_new_with_label ("Hi, i’m another toggle button.");
* gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle2), FALSE);
* g_signal_connect (toggle2, "toggled",
* G_CALLBACK (output_state), NULL);